home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Symantec Visual Cafe for Java 2.5
/
symantec-visual-cafe-2.5-database-dev-edition.iso
/
Visual Cafe Pro v1.0
/
TUTORIAL.BIN
/
ListProjection.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-01-30
|
830 b
|
21 lines
package symantec.itools.db.pro;
import symjava.sql.SQLException;
class ListProjection extends Projection {
ListBinder _listBind;
public ListProjection(ListBinder lb) {
this._listBind = lb;
}
public void notifyDataChange(ProjBinder data) {
super.notifyDataChange(data);
try {
this._listBind.dataChanged();
} catch (SQLException var2) {
}
}
}